home *** CD-ROM | disk | FTP | other *** search
/ .net 2002 March / DotNetMagazine-Issue107-Coverdisc-NET107-02-03-PCMac.bin / pc / PC Software / free_browsing / DavesQckSearchDbar3-14 / dqsd.exe / src / DQSDTools / KeyboardHook.h < prev    next >
C/C++ Source or Header  |  2002-07-18  |  534b  |  23 lines

  1.  
  2. /////////////////////////////////////////////////////////////////////////////
  3. // CKeyboardHook
  4.  
  5. #if !defined(KEYBOARDHOOK_H)
  6. #define KEYBOARDHOOK_H
  7.  
  8. HRESULT KeyboardHookInstall(HWND hWnd, HHOOK& hInstalledHook);
  9. void KeyboardHookRemove(HHOOK hInstalledHook);
  10.  
  11.  
  12. //
  13. // Install a hotkey
  14. //
  15. // Return:
  16. //        HRESULT
  17. //
  18. HRESULT
  19. KeyboardInstallHotkey(int vkCode, LPCTSTR pModifierNames, HWND* phwndNotification, LPDISPATCH pDispDocument);
  20.  
  21. extern std::map< long, long > g_mapKeyCodeToCharCode;
  22.  
  23. #endif // KEYBOARDHOOK_H